projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bf31d1
)
Remove just input mark
author
Tino Calancha
<tino.calancha@gmail.com>
Fri, 8 Jul 2016 02:22:34 +0000
(11:22 +0900)
committer
Tino Calancha
<tino.calancha@gmail.com>
Fri, 8 Jul 2016 02:22:34 +0000
(11:22 +0900)
* lisp/ibuffer.el (ibuffer-unmark-all): When MARK is not ?\r remove
just MARK.
lisp/ibuffer.el
patch
|
blob
|
history
diff --git
a/lisp/ibuffer.el
b/lisp/ibuffer.el
index 4f266d909e458316e33322b77219aea548d4a943..fde17573dd7ccc114eab87ca2ffca741f40a5f60 100644
(file)
--- a/
lisp/ibuffer.el
+++ b/
lisp/ibuffer.el
@@
-1345,6
+1345,12
@@
With optional ARG, make read-only only if ARG is not negative."
(lambda (_buf _mark)
(ibuffer-set-mark-1 ?\s)
t)))
+ ((not (char-equal mark ?\r))
+ (ibuffer-map-lines
+ (lambda (_buf _mark)
+ (when (char-equal _mark mark)
+ (ibuffer-set-mark-1 ?\s))
+ t)))
(t
(ibuffer-map-lines
(lambda (_buf mark)